/* Import Unified Color Palette */
@import url('colors.css');

/* ================================= */
/* Global Reset                      */
/* ================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ================================= */
/* Body Layout                       */
/* ================================= */
body {
    display: flex;
    margin: 0px;
    height: 100vh;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    color: var(--greenNormal);
}

/* ================================= */
/* Container Card                    */
/* ================================= */
.Container {
    background-color: rgb(255, 255, 255);
    height: auto;
    width: 350px;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 1px 1px 5px 5px rgb(180, 170, 170);
}

/* ================================= */
/* Header                            */
/* ================================= */
header {
    display: flex;
    height: 50px;
    border-radius: 5px;
    margin-bottom: 15px;
    align-items: center;
}

header img {
    display: flex;
    height: 40px;
}

/* ================================= */
/* Forms                             */
/* ================================= */
.FORM {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* ================================= */
/* Input Fields                      */
/* ================================= */
.FORM input {
    border-radius: 5px;
    border: none;
    height: 40px;
    width: 100%;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    padding-left: 10px;
}

.FORM input::placeholder {
    font-family: 'Poppins', sans-serif;
    padding-left: 5px;
    font-size: 16px;
}

/* ================================= */
/* Buttons                            */
/* ================================= */
.btn, .next, .prev {
    background-color: var(--greenNormal);
    color: white;
    font-family: 'Poppins', sans-serif;
    transition: all 0.5s ease;
    font-weight: bold;
    font-size: 16px;
    height: 40px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn:hover, .next:hover, .prev:hover {
    filter: brightness(115%);
}

/* Registration Button */
.reg {
    background-color: var(--greenNormal);
    color: white;
    font-family: 'Poppins', sans-serif;
    transition: all 0.5s ease;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
}

.reg:hover {
    filter: brightness(115%);
}

.regg {
    display: flex;
    width: 100%;
    text-decoration: none;
}

/* ================================= */
/* Remember & Forget Section         */
/* ================================= */
.Rememberandforget {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.Rememberandforget .left {
    display: flex;
    align-items: center;
}

.Rememberandforget input[type="checkbox"] {
    height: 16px;
    width: 16px;
    cursor: pointer;
}

/* ================================= */
/* Divider (OR line)                 */
/* ================================= */
.orr {
    display: flex;
    width: 100%;
    gap: 5px;
    align-items: center;
}

hr {
    flex: 1;
    background-color: var(--greenNormal);
    height: 1px;
}

/* ================================= */
/* Links                             */
/* ================================= */
.Rememberandforget a {
    text-decoration: none;
    color: var(--greenNormal);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.Rememberandforget a:hover {
    border-bottom: 1px solid var(--greenNormalHover);
}

/* ================================= */
/* User Input Styles                 */
/* ================================= */
.User {
    background-color: #f1fcea;
    border: 0px solid #ccc;     
    border-radius: 5px;
    outline: none;              
    transition: all 0.3s ease; 
}

.User:hover {
    box-shadow: 0 0 3px #4CAF50; /* توهج خفيف */
}

.User:focus {
    box-shadow: 0 0 8px #4CAF50; /* توهج خفيف */
}

/* ================================= */
/* Radio Buttons                     */
/* ================================= */
.radioo {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.gend {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.gend input[type="radio"] {
    display: none;
}

.gend label {
    width: 100px;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--greenLightActive);
    color: white;
    border-radius: 5px;
}

.gend input[type="radio"]:checked + label {
    background-color: var(--greenNormal);
}

.gend label:hover {
    filter: brightness(115%);
}

/* ================================= */
/* Step Form Sections                */
/* ================================= */
.step {
    display: none;
}

.step.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;  
    gap: 20px;
    width: 100%;
    height: 100%;
}

/* ================================= */
/* Buttons Wrapper                   */
/* ================================= */
.btns {
    display: flex;
    width: 100%;
    gap: 10px;
}

/* ================================= */
/* Datepicker                        */
/* ================================= */
.ui-datepicker {
    background: #f0f0f0;   
    border: 1px solid #aaa; 
    color: #333;            
}

/* ================================= */
/* Error Message                     */
/* ================================= */
p {
    color: red;
}

/* ================================= */
/* Address Dropdown                   */
/* ================================= */
/* #AddressType {
    color: gray;
    width: 100%;             
    padding: 10px;            
    border-radius: 5px;       
    border: none;   
    background-color: #f1fcea; 
    font-size: 16px;          
    appearance: none;         
    transition: all 0.3s ease;
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><polygon points="0,0 20,0 10,10"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
} */

/* .iti__search-icon{
    padding-right: 50px;
} */
 #iti-0__search-input{
    padding-left: 25px;
 }