﻿* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: 40px auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
}

.progress-bar {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

    .progress-bar::before {
        content: "";
        position: absolute;
        height: 4px;
        background-color: #e0e0e0;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }

.progress-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
    color: #666;
    font-weight: bold;
}

.progress-step.active .step-indicator {
    background-color: #1e88e5;
    color: white;
}

.progress-step.completed .step-indicator {
    background-color: #43a047;
    color: white;
}

.step-name {
    font-size: 14px;
    color: #666;
}

.progress-step.active .step-name {
    color: #1e88e5;
    font-weight: bold;
}

h1 {
    text-align: center;
    margin-bottom: 10px;
    color: #333;
    font-size: 28px;
}

.subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    font-size: 18px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border 0.3s;
}

    input:focus {
        outline: none;
        border-color: #1e88e5;
        box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.2);
    }

.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    background: none;
    border: none;
    font-size: 18px;
}

.password-hint {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.button {
    background-color: #1e88e5;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s, transform 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

    .button:hover {
        background-color: #1565c0;
        transform: translateY(-2px);
    }

    .button svg {
        margin-left: 8px;
    }

.terms {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.5;
}

    .terms a {
        color: #1e88e5;
        text-decoration: none;
    }

        .terms a:hover {
            text-decoration: underline;
        }

.login-link {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}

    .login-link a {
        color: #1e88e5;
        text-decoration: none;
        font-weight: 600;
    }

        .login-link a:hover {
            text-decoration: underline;
        }
