@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: black;
    font-family: "Roboto", sans-serif;
}

/* container */
#auth-container{
    background: white;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 290px;
    text-align: center;
    transition: 0.3s ease;
    border-radius: 5px;
     animation: slideDown 0.8s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#auth-container:hover {
    transform: translateY(-5px);
}

/* heading */
#auth-container h1{
    text-transform: uppercase;
    font-family: "Archivo", sans-serif;
}

/* input field */
input {
    padding: 12px 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 80%;
    margin-bottom: 1rem;
    font-size: 15px;
    transition: all 0.2s ease;
}

input:hover {
    border: 1px solid black;
}
input:focus {
    outline: none;
    border: 1px solid black;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}


/* checkbox */
.checkboxx {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-left: 11px;
}

.checkboxx input[type="checkbox"] {
    accent-color: black;
}

.checkboxx input {
    width: auto;
    margin: 0;
    padding: 0;
}

.checkboxx label {
    font-size: 14px;
    cursor: pointer;
    color: #7c7878;
}

/* button  */
button {
    padding: 13px;
    border: none;
    border-radius: 3px;
    background-color: black;
    color: white;
    cursor: pointer;
    font-size: 15px;
    width: 93%;
    margin: 9px;
    margin-top: 9px;
    margin-bottom: 8px;
    font-weight: 600;
    transition: 0.3s;
}
button:hover {
    box-shadow: 0 0 10px black;
    transform: scale(1.03);
}

/* google btn */
.google-btn{
    padding: 8px;
    width: 93%;
    background-color: white;
    color: #7c7878;
    border: 1px solid #c9c9c9;
    font-size: 14px;
    border-radius: 2px;
    text-align: center;
    margin-top: 0px;
}
.google-btn:hover {
    background-color: #f5f5f5;
    border-color: black;
}

.google-btn img {
    position: relative;
    top: 4px;
    width: 20px;
    right: 6px;
}

.loginwith {
    color: #7c7878;
    font-size: 14px;
}

/* links  */
p {
    color: #333;
}

a {
    color: #777474;
    text-decoration: underline;
}

a:hover {
    color: black;
}

/* welcome  */
.welcome-page{
       background: white;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 380px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: 0.3s ease;
}
.welcome-page h1{
     line-height: 40px;
}

@media (max-width:480px){
    #auth-container{
        width: 240px;
        padding: 1.5rem;
    }

    input {
        width: 90%;
    }
}