/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ebebeb;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Form Wrapper */
.form-wrapper {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo-container {
    position: relative;
    height: 64px;
}

.logo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 2px solid #28a745;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -70px;
}

/* Input Container */
.input-container {
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 20px;
}

.icon-container {
    background-color: #f2f2f2;
    padding: 10px;
}

.input-field {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    font-size: 14px;
}

.input-field::placeholder {
    color: #aaa;
}

/* Submit Button */
.submit-btn {
    background-color: #0E9C7E;
    color: white;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #0b7d62;
}

/* Login Text */
.login-text {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.login-link {
    color: #0E9C7E;
    text-decoration: none;
    font-weight: bold;
}

.login-link:hover {
    color: red;
}


/* Responsive Styles */

/* For small devices like smartphones (up to 480px) */
@media screen and (max-width: 480px) {
    .form-wrapper {
        padding: 20px;
        max-width: 100%;
    }

    .logo {
        width: 70px;
        height: 70px;
        top: -60px;
    }

    .logo-container {
        position: relative;
        height: 64px;
        top: 10px;
    }

    .input-field {
        padding: 7px;
        font-size: 12px;
    }

    .submit-btn {
        font-size: 12px;
        padding: 8px;
    }

    .login-text {
        font-size: 12px;
    }
}

/* For medium devices like tablets (481px to 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .form-wrapper {
        padding: 25px;
        max-width: 80%;
    }

    .logo-container {
        position: relative;
        height: 64px;
        top: 10px;
    }

    .logo {
        width: 80px;
        height: 80px;
    }

    .input-field {
        padding: 8px;
        font-size: 14px;
    }

    .submit-btn {
        font-size: 14px;
        padding: 10px;
    }
}

/* For laptops and desktops (769px and above) */
@media screen and (min-width: 769px) {
    .form-wrapper {
        max-width: 400px;
        padding: 30px;
    }

    .logo {
        width: 96px;
        height: 96px;
    }

    .input-field {
        padding: 10px;
        font-size: 16px;
    }

    .submit-btn {
        font-size: 16px;
        padding: 12px;
    }
}