* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 460px;
    padding: 40px;
}

.text {
    text-align: center;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 14px;
    color: #999;
}

.form-group {
    margin-bottom: 16px;
}

.input-wrapper {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
    font-weight: 500;
}

input[type="email"],
input[type="password"],
input[type="text"],
input[type="tel"],
select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
select:focus {
    outline: none;
    border-color: #1dd1a1;
    box-shadow: 0 0 0 3px rgba(29, 209, 161, 0.1);
}

input::placeholder {
    color: #bbb;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 18px;
    padding: 4px 8px;
    transition: color 0.2s;
}

.toggle-password:hover {
    color: #333;
}

.password-input-wrapper {
    position: relative;
}

.password-input-wrapper input {
    padding-right: 40px;
}

.phone-input {
    display: flex;
    gap: 0.5rem;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background: #f9fafb;
}

.flag {
    width: 24px;
    height: 16px;
}

.create-button {
    width: 100%;
    padding: 12px;
    background: #1dd1a1;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 8px;
}

.create-button:hover {
    background: #10ac84;
}

.create-button:active {
    transform: scale(0.98);
}

.footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #666;
}

.footer a {
    color: #1dd1a1;
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }

    .title {
        font-size: 20px;
    }
}
