/*<div class="col-3 input-effect">*/
/*            <input class="effect-19" type="text" placeholder="">*/
/*            <label>First Nameok</label>*/
/*            <span class="focus-border">*/
/*                <i></i>*/
/*            </span>*/
/*        </div>*/



/* Target autofill styles for modern browsers */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    /* Your styles here */
    /*border: 2px solid #000;*/
    /*background-color: #f0f0f0;*/
    color: #000;
}


input:-webkit-autofill {
    -webkit-text-fill-color: #000;
    transition: background-color 5000s ease-in-out 0s; /* Set a long transition to override autofill background color */
}

body {
    
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

#log-btn {
    width: 100%;
    text-align: center;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

h2 {
    color: #333;
}
h1 {
    width: 100%;
    text-align: center;
    color: #8500ff;
}

form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
    margin: 1rem;
}


label {
    display: block;
    margin-bottom: 8px;
}


input {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    box-sizing: border-box;
    /*background: linear-gradient(to bottom, #f8bb86, #f27474);*/
    border-radius: 0.5rem;
    font-size: 16px;
    font-weight: bold;
}

button {
    background: linear-gradient(to bottom, #f0cd04, #ffbd46);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 10rem;
    cursor: pointer;
    font-weight: bold;
    width: 10rem;
    font-size: 18px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
