/* Base styles */
* { box-sizing: border-box; margin:0; padding:0; font-family: 'Inter', sans-serif; }
body {
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container */
.reset-container {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h2 {
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Messages */
.error-msg {
    color: #b00020;
    background: #f8d7da;
    border: 1px solid #f5c2c7;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-weight: 500;
    text-align: left;
}

.success-msg {
    color: #155724;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-weight: 500;
    text-align: left;
}

/* Input */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #555;
}

.input-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #667eea;
    box-shadow: 0 0 8px rgba(102,126,234,0.3);
    outline: none;
}

/* Button */
.btn-submit {
    width: 100%;
    padding: 14px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #5a67d8;
}

/* Links */
.reset-container a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.reset-container a:hover {
    text-decoration: underline;
}


/*Login*/

/* Container */
.login-container {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Button */
.btn-login {
    width: 100%;
    padding: 14px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login:hover {
    background: #5a67d8;
}

/* Forgot link */
.login-container p {
    margin-top: 15px;
}

.login-container a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.login-container a:hover {
    text-decoration: underline;
}


/*логин лого*/


/* Logo container */
.logo-container {
    text-align: center;
    margin-bottom: 5px;
}

.logo {
    width: 100px; /* хүссэн хэмжээгээр тохируулна */
    height: auto;
    display: inline-block;
    border-radius: 50px; /* хүсвэл border-radius нэмж болно */
    box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* жижиг сүүдэр */
    margin-bottom: 10px;
}
