@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

.wrapper {
    background-color: rgba(56, 101, 127, 0.69);
    width: 100%;
    height: 100vh;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 500px;
    background-color: white;
    padding: 30px;
    border-radius: 16px;
}

.title-section {
    margin-bottom: 16px;
}

.title {
    color: #38475a;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.para {
    color: #38475a;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 16px;
}

.input-group .label-title {
    color: #38475a;
    font-size: 14px;
    display: block;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    background-color: none;
    color: #38475a;
    height: 50px;
    font-size: 16px;
    font-weight: 300;
    border: 1px solid #EAECF0;
    padding: 9px 18px 9px 52px;
    outline: none;
    border-radius: 8px;
    margin-bottom: 16px;
}

.submit-btn {
    width: 100%;
    background-color: rgba(56, 101, 127, 0.69);
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    color: #fff;
    padding: 13px 24px;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
    cursor: pointer;
}

.submit-btn:hover {
    opacity: 0.8;
}

#alert {
    display: none;
    color: red;
    margin-bottom: 16px;
}

#success {
    display: none;
    color: green;
    margin-bottom: 16px;
}
