* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #fcfcfb, #f9f9f9);
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-container {
    animation: fadeIn 1.2s ease-in-out;
}

.register-box {
    background: #fff;
    padding: 35px;
    width: 450px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: slideUp 1s ease;
}

.register-box h2 {
    text-align: center;
    color: #ff7a18;
    font-weight: 600;
}

.register-box p {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

.row {
    display: flex;
    gap: 15px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
    flex: 1;
}

.input-group input {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
}

.input-group label {
    position: absolute;
    top: 50%;
    left: 10px;
    color: #999;
    font-size: 13px;
    transform: translateY(-50%);
    pointer-events: none;
    transition: 0.3s;
    background: #fff;
    padding: 0 5px;
}

.input-group input:focus + label,
.input-group input:valid + label,
.input-group label.active {
    top: -8px;
    font-size: 11px;
    color: #ff7a18;
}

.input-group input:focus {
    border-color: #ff7a18;
}

button {
    width: 100%;
    padding: 14px;
    border: none;
    background: linear-gradient(90deg, #ff7a18, #ff9f43);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255,122,24,0.4);
}

.login-link {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
}

.login-link a {
    color: #ff7a18;
    text-decoration: none;
    font-weight: 500;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
