* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}
body {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}
.container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.form-container {
    padding: 40px 40px 0px;
    transition: all 0.6s ease-in-out;
}
.sign-in-container {
    width: 100%;
}
.sign-reg-container {
    width: 100%;
    display: none;
}
.sign-findpw-container {
    width: 100%;
    display: none;
}
h1 {
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    font-size: 26px;
}
.social-container {
    margin: 20px 0;
    text-align: center;
}
.social-container a {
    border: 1px solid #ddd;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}
span {
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}
input {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
    border-radius: 5px;
    font-size: 14px;
}
button {
    border-radius: 5px;
    border: none;
    background-color: #4CAF50;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
}
button:active {
    transform: scale(0.95);
}
button:focus {
    outline: none;
}
.toggle-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.toggle-btn {
    background-color: transparent;
    color: #333;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
}
@media (min-width: 76800px) {
    .container {
        flex-direction: row;
    }
    
    .form-container {
        width: 50%;
    }
    
    .sign-reg-container {
        display: block;
    }
    
    .toggle-container {
        display: none;
    }
}

.send-email-messege {
    font-size: 14px;
    float: right;
    margin-right: 10px;
    line-height: 30px;
}

.send-email {
    font-size: 14px;
    float: right;
    margin-right: 10px;
    line-height: 30px;
    color: blue;
}

.fogot_pass {
    font-size: 14px;
    margin-right: 10px;
    line-height: 30px;
    color: #333;
    font-weight: 600;
    width: 80px;
    text-align: center;
    text-decoration: underline;
}
