/* Reset mặc định để đồng nhất giao diện trên các trình duyệt */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #74ebd5, #acb6e5);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.uk-form-row {
    margin-bottom: 15px;
    width: 100%;
}

.uk-form-label {
    font-weight: bold;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.uk-form-icon {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.uk-form-icon i {
    position: absolute;
    left: 10px;
    color: #888;
}

.uk-form-icon input {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s;
}

.uk-form-icon input:focus {
    border-color: #0077ff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 119, 255, 0.5);
}

.uk-button {
    display: inline-block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.uk-button-primary {
    background: #0077ff;
    color: white;
}

.uk-button-primary:hover {
    background: #005bb5;
}

.uk-button-secondary {
    background: #ddd;
    color: #333;
}

.uk-button-secondary:hover {
    background: #bbb;
}

p {
    font-size: 14px;
    color: #666;
    text-align: center;
}

a {
    color: #0077ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
.login-container{
	align-items: center;
}
.login-container .logo {
    text-align: center;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    form {
        padding: 15px;
        width: 90%;
        align-items: center;
    }
	.login-container{
		margin-left: 40px;
	}
    .uk-form-row {
        width: 100%;
    }

    .uk-button {
        font-size: 14px;
        padding: 8px;
    }

    .uk-form-icon input {
        font-size: 13px;
    }
}
