/* General Styles */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f9f9f9;
}

/* Login Container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Login Box */
.login-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 350px;
}

/* Logo Icon */
.logo {
    font-size: 40px;
    color: #222;
    margin-bottom: 10px;
}

/* Title */
h2 {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
}

/* Subtitle */
.subtitle {
    color: gray;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Form Styling */
form {
    text-align: left;
}

/* Labels */
label {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

/* Input Box */
.input-box {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
    background: #f8f8f8;
}

.input-box i {
    margin-right: 10px;
    color: gray;
}

/* Input Fields */
input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
}

/* Login Button */
.login-btn {
    background: #0fad4b;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.login-btn:hover {
    background: #0d8d3d;
}

/* Support Text */
.support-text {
    font-size: 13px;
    margin-top: 15px;
}

.support-text a {
    color: #0fad4b;
    text-decoration: none;
    font-weight: bold;
}

.support-text a:hover {
    text-decoration: underline;
}
