/* Reset Default Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Center the login box */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Styling the Login Box */
.login-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 50px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h2 {
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Styling the Input Fields */
.textbox {
    position: relative;
    margin-bottom: 20px;
}

.textbox input {
    width: 100%;
    padding: 15px 40px 15px 40px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
}

.textbox input:focus {
    border-color: #0072ff;
}

/* Add Icons inside Inputs */
.textbox i {
    position: absolute;
    top: 12px;
    left: 10px;
    color: #0072ff;
    font-size: 20px;
}

/* Submit Button Styling */
.btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    background-color: #0072ff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-box {
        padding: 30px 40px;
    }

    .textbox input {
        font-size: 15px;
    }

    .btn {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .login-box {
        padding: 20px 30px;
    }

    .textbox input {
        font-size: 14px;
    }

    .btn {
        font-size: 15px;
    }
}
