/* * {
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    margin: 0;
    height: 100vh;
    background: url("../assets/registerPageImage.png") no-repeat center center/cover;
}

.page {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding-left: 8%;   
}

.register-card {
    background: #ffffff;
    width: 380px;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.header {
    text-align: center;
    margin-bottom: 16px;
}

.logo {
    width: 60px;
    margin-bottom: 8px;
}

.header h1 {
    color: #19c6cf;
    letter-spacing: 1px;
    margin: 4px 0;
}

.header p {
    font-size: 13px;
    color: #19c6cf;
}

form input,
form select {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1.5px solid #19c6cf;
    outline: none;
    font-size: 14px;
}

form input::placeholder {
    color: #6ccfd6;
}

.mobile-row {
    display: flex;
    gap: 8px;
}

.country-code {
    width: 80px;
}

button {
    width: 100%;
    padding: 12px;
    background: #19c6cf;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    margin-top: 6px;
}

button:hover {
    background: #14b2ba;
} */

* {
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background: url("../assets/registerPageImage.png") no-repeat center center/cover;
}

/* PAGE LAYOUT */
.page {
    display: flex;
    align-items: flex-start;      /* ⬅ not centered vertically */
    justify-content: flex-start;
    padding-left: 6%;
    padding-top: 40px;            /* ⬅ breathing space like reference */
    min-height: 100vh;
}

/* CARD */
.register-card {
    background: #ffffff;
    width: 420px;                 /* ⬅ closer to reference */
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* HEADER FIX */
.header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.logo {
    width: 64px;
    flex-shrink: 0;
}

.header-text h1 {
    margin: 0;
    color: #19c6cf;
    letter-spacing: 1px;
}

.header-text p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #19c6cf;
}

/* FORM */
form input,
form select {
    width: 100%;
    padding: 9px 12px;            /* ⬅ slightly reduced to fit viewport */
    margin-bottom: 9px;
    border-radius: 8px;
    border: 1.5px solid #19c6cf;
    outline: none;
    font-size: 14px;
}

form input::placeholder {
    color: #6ccfd6;
}

.mobile-row {
    display: flex;
    gap: 8px;
}

.country-code {
    width: 80px;
}

/* BUTTON */
button {
    width: 100%;
    padding: 12px;
    background: #19c6cf;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    margin-top: 8px;
}

button:hover {
    background: #14b2ba;
}