@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #dfdfdf;
}

.register-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 440px;
    padding: 30px;
}

.register-header {
    text-align: center;
    margin: 20px 0 40px 0;
}

.register-header header {
    color: #000080;
    font-size: 30px;
    font-weight: 600;
}

.input-box .input-field {
    width: 100%;
    height: 60px;
    font-size: 17px;
    padding: 0 25px;
    margin-bottom: 15px;
    border-radius: 30px;
    border: none;
    box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.05);
    outline: none;
    transition: 0.3s;
}

::placeholder {
    color: #222;
}

.input-field:focus {
    transform: scale(1.03);
}

.terms {
    margin-bottom: 30px;
}

.terms section {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
}

#agree {
    margin-right: 10px;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.input-submit {
    position: relative;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    background: #202A44;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #202A44;
    transform: scale(1.05, 1);
    text-decoration: none;
}

.login-link {
    text-align: center;
    font-size: 15px;
    margin-top: 20px;
}

.login-link a {
    color: #000;
    font-weight: 600;
}


.phone-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    height: 60px;
    box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.country-code {
    padding: 0 20px;
    font-size: 17px;
    color: #222;
    border-right: 1px solid #ddd;
}

.phone-input {
    border: none;
    box-shadow: none;
    border-radius: 0 30px 30px 0;
    height: 100%;
    padding-left: 15px;
}

.phone-input:focus {
    transform: none;
}
