/* ====================================
   ACCOUNT/LOGIN STILI
   ==================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f5f7fa;
    color: #2c3e50;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Login konteiners */
.logcontainer {
    width: 100%;
    max-width: 400px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

header {
    background: white;
    border-bottom: 1px solid #e8ecef;
    padding: 30px;
    text-align: center;
}

header h1 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
}

main {
    padding: 30px;
}

/* Button group */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.button-group button,
.button-group a {
    padding: 12px 20px;
    background: #3498db;
    color: white;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.button-group button:hover,
.button-group a:hover {
    background: #2980b9;
}

/* Form */
.container {
    width: 100%;
    max-width: 400px;
    margin: auto;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 24px;
}

form {
    background: transparent;
    padding: 0;
}

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

form label {
    font-weight: 500;
    margin-bottom: 6px;
    color: #2c3e50;
    font-size: 14px;
}

form input {
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #dfe4ea;
    width: 100%;
}

form input:focus {
    border-color: #3498db;
    outline: none;
}
/* Paroles rādīšanas/paslēpšanas saite */
.toggle-password-link {
    display: inline-block;
    margin-top: 5px;
    font-size: 14px;
    color: #4a6fa5;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.toggle-password-link:hover {
    color: #3e5f8b;
    text-decoration: underline;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.checkbox-group input {
    width: auto;
    margin-right: 8px;
}

.checkbox-group label {
    font-weight: 400;
    margin: 0;
}

/* Button */
button {
    padding: 12px 20px;
    background: #3498db;
    color: white;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: all 0.2s;
}

button:hover {
    background: #2980b9;
}

/* Links */
.form-links {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8ecef;
}

.form-links a {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.form-links a:hover {
    text-decoration: underline;
}