* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(281deg, #005174 5.01%, #088C78 62.04%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.logo {
    width: 48px;
    height: 48px;
}

.logo-text {
    font-size: 14px;
    color: #1F2937;
}

.logo-text1 {
    font-weight: 500;
}

.logo-text2 {
    font-weight: 600;
}

h1 {
    font-size: 24px;
    color: #1F2937;
    margin-bottom: 16px;
    text-align: center;
}

.description {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 14px;
    color: #4B5563;
    margin-bottom: 8px;
}

input {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    color: #1F2937;
    transition: border-color 0.2s;
}

input:focus {
    outline: none;
    border-color: #2563EB;
}

button {
    width: 100%;
    padding: 12px;
    background: #2C6159;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background: #1a3d37;
}

.error-message {
    color: #DC2626;
    font-size: 14px;
    margin-top: 4px;
    display: none;
}

.success-message {
    color: #059669;
    font-size: 14px;
    margin-top: 4px;
    display: none;
}

.back-to-login {
    text-align: center;
    margin-top: 16px;
}

.back-to-login a {
    color: #2C6159;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.back-to-login a:hover {
    color: #1a3d37;
    text-decoration: underline;
}