@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;700&display=swap');

body {
    margin: 0;
    background: #0f0f10;
    font-family: 'Rajdhani', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.register-box {
    background: #1a1a1d;
    border: 1px solid #27272b;
    padding: 40px 36px;
    border-radius: 8px;
    text-align: center;
}

.title {
    color: #ff4655;
    font-size: 42px;
    margin-bottom: 10px;
}

.subtitle {
    color: #fff;
    font-size: 22px;
    margin-bottom: 30px;
}

.input-group {
    text-align: left;
    margin-bottom: 20px;
}

.input-group label {
    color: #ccc;
    font-size: 14px;
}

.input-group input {
    width: calc(100% - 28px);
    padding: 12px 14px;
    margin-top: 6px;
    background: #131315;
    border: 1px solid #303036;
    border-radius: 6px;
    color: white;
    font-size: 15px;
    transition: 0.2s;
}

.input-group input:focus {
    outline: none;
    border-color: #ff4655;
    box-shadow: 0 0 8px #ff465580;
}

.register-btn {
    width: 100%;
    padding: 13px;
    margin-top: 10px;
    background: #ff4655;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

.register-btn:hover {
    background: #e63d4b;
    transform: scale(1.02);
}

.msg {
    margin-top: 16px;
    font-size: 14px;
    color: #ff4655;
}

.login-link {
    display: block;
    margin-top: 20px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    opacity: 0.7;
}

.login-link:hover {
    opacity: 1;
}
